home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / ACCEPT.C < prev    next >
Encoding:
Text File  |  1989-07-29  |  235 b   |  12 lines

  1. int  GetLine( char *s, int len, int start );
  2. void Say( char *s );
  3.  
  4. #include <conio.h>
  5.  
  6. void Accept( int x, int y, char *Prompt, char *Buffer, int Length )
  7. {
  8.     gotoxy( x, y );
  9.     Say( Prompt );
  10.     GetLine( Buffer, Length, 0 );
  11. }
  12.